summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-29 15:09:00 +0100
committerGitHub <noreply@github.com>2024-01-29 15:09:00 +0100
commit06abf3205a49f0f62f49663874f2789ebeaa6943 (patch)
treefc14a3f597d449992891ef8bce1c9c25f936ff68
parentMerge pull request #12836 from german77/im_home (diff)
parentservice: am: Focus state changed goes last (diff)
downloadyuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.gz
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.bz2
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.lz
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.xz
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.zst
yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.zip
-rw-r--r--src/core/hle/service/am/am.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index a768bdc54..38f67adcd 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -931,8 +931,8 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_,
sleep_lock_event = service_context.CreateEvent("ICommonStateGetter::SleepLockEvent");
// Configure applets to be in foreground state
- msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged);
msg_queue->PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground);
+ msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged);
}
ICommonStateGetter::~ICommonStateGetter() {